'Declaration Public Function Where( _ ByVal predicate As Expression(Of Func(Of T,Boolean)) _ ) As View(Of T)
public View<T> Where( Expression<Func<T,bool>> predicate )
Parameters
- predicate
- A function to test each element for a condition.
Return Value
A view that contains elements of this view that satisfy the condition.